   .brand-group {
  display: flex;
  align-items: center;
  gap: 18px;           /* space between name and icons */
  flex-wrap: wrap;     /* if screen is narrow, icons wrap below */
}

.company-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  white-space: nowrap; /* keep name on one line until it must wrap */
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;           /* gap between each icon */
  flex-shrink: 0;      /* stops icons from shrinking if name grows */
}

.social-icons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}
  .social-icons img {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain;
  }

 :root {
  --main-font: 'Jost', sans-serif;
  --heading-font: 'Roboto Slab', serif;
  --accent: #000000;
  --muted: #0e0e0e;
  --ease: cubic-bezier(0.2, 0.9, 0.3, 1);
}

body {
  margin: 0;
  font-family: var(--main-font);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--muted);
}

/* ==== DESKTOP NAVBAR ==== */
header#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header#navbar #logo {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: bold;
}

nav#menu {
  display: flex;
  gap: 24px;
}

nav#menu a {
  position: relative;
  white-space: nowrap;
  font-size: 16px;
}

nav#menu a.active::after,
nav#menu a:hover::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(black);
  transition: width 0.3s var(--ease);
}

nav#menu a::after {
  width: 0;
}

/* Dropdown PC */
#dropdown {
  position: relative;
}

#dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 16px 24px;
  min-width: 400px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s var(--ease);
  border-radius: 8px;
  z-index: 1001;
}

#dropdown:hover #dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#dropdown-links a {
  font-size: 16px;
  white-space: nowrap;
}

#dropdown-links a:hover {
  color: black;
}

#image-preview {
  width: 160px;
  height: 120px;
  position: relative;
}

#image-preview img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s var(--ease);
  border-radius: 8px;
  pointer-events: none;
}

#image-preview img.active {
  opacity: 1;
  transform: translateX(0);
}

/* Hamburger - hidden on desktop */
#mobile-hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
}

/* ==== APP BAR FOR TABLET/MOBILE ==== */
header#app-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 12px 24px;
  align-items: center;
  justify-content: space-between;
}

#app-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

#app-bar-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
}

#app-bar-text {
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 20px;
  color: var(--muted);
}

/* MOBILE NAV DRAWER */
#mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  /* Removed blur */
  pointer-events: none;
  transition: all 0.4s var(--ease);
  z-index: 999;
}

#mobile-nav {
  width: 75%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
}

#mobile-overlay.active {
  pointer-events: all;
}

#mobile-overlay.active #mobile-nav {
  transform: translateX(0);
}

#mobile-nav #mobile-nav-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

#mobile-nav #mobile-nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
}

#mobile-nav #mobile-nav-text {
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 20px;
  color: var(--muted);
}

#mobile-nav a {
  font-size: 18px;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* Mobile dropdown inside drawer */
#dropdown-mobile-patches > a {
  cursor: pointer;
  user-select: none;
  display: block;
  padding: 10px 0;
  font-size: 18px;
}

#dropdown-menu-mobile-patches {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  padding-left: 16px;
}

#dropdown-mobile-patches.open #dropdown-menu-mobile-patches {
  max-height: 500px;
}

#dropdown-menu-mobile-patches a {
  padding: 6px 0;
  font-size: 16px;
}

/* ===== RESPONSIVE RULES ===== */
/* Desktop & laptop: show full navbar, hide app bar & mobile menu */
@media (min-width: 992px) {
  header#navbar {
    display: flex;
  }
  header#app-bar,
  #mobile-hamburger,
  #mobile-overlay {
    display: none;
  }
}

/* Tablet & below (up to 991px): show app bar & hamburger, hide desktop nav */
@media (max-width: 991px) {
  header#navbar {
    display: none;
  }
  header#app-bar {
    display: flex;
  }
  #mobile-hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }
  #mobile-overlay {
    display: flex;
  }
}
/* Remove browser's underline completely */
#menu a,
#menu a:visited,
#menu a:hover,
#menu a:focus {
  color: black !important;
  text-decoration: none !important;  /* kills built-in underline */
  position: relative;                /* needed for ::after underline */
}

/* Single custom black underline */
#menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: black;
  transition: width 0.3s ease;
}

#menu a:hover::after {
  width: 100%;
}
